@charset "utf-8";
/* 导航菜单 START */
/* 菜单项 */
#menubar {
	float:left; /* 靠左浮动 */
	margin-left: 9px;
}
#menubar ul.menus li {
	float:left; /* 靠左浮动 */
	list-style:none;
	width: 122px;
}
/* 菜单项链接 */
#menubar ul.menus li a {
	display:block; /* 显示为块 */
	color:#FFFFFF; /* 背景颜色 */
	text-decoration:none; /* 没有下横线 */
	font-family: "微软雅黑";
	font-size: 14px;
	line-height: 46px;
}
/* 当前菜单项链接 */
#menubar ul.menus li.current-cat a {

}
/* 选中菜单项链接 */
#menubar ul.menus li a:hover {
	font-family: "微软雅黑";
	color: #FFFFFF;
	font-size: 14px;
	line-height: 46px;
	background-image: url(images/nav.jpg);
}
#menubar ul.menus li a.e {
	font-family: "微软雅黑";
	color: #FFFFFF;
	font-size: 14px;
	line-height: 46px;
	background-image: url(images/nav.jpg);
}
/* 二级菜单 */
#menubar ul.children {
	display:none; /* 初始化页面时不显示出来 */
	padding:0;
	margin-top: -2px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}
/* 二级菜单的菜单项 */
#menubar ul.children li {
	float:none; /* 垂直排列 */
	margin:0;
	padding:0;
}
/* 二级菜单的当前菜单项链接 */
#menubar ul.children li a {
	width:123px;
	text-align: center;
	font-family: "微软雅黑";
	font-size: 13px;
	color:#FFFFFF;
	background-color: #353535;
	line-height: 30px;
}
#menubar ul.children li a:hover {
	width:123px; /* 对 IE6 来说十分很重要 */
	background-color: #353535;
	text-align: center;
	color: #FFFFFF;
	font-family: "微软雅黑";
	font-size: 13px;
	line-height: 30px;
	display:block;
}
/* 导航菜单 END */
